for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
'use strict';
angular
.module('game')
.config(['$stateProvider',
function($stateProvider) {
$stateProvider
.state('generators', {
component: 'generators'
})
.state('redox', {
component: 'redox'
.state('reactions', {
component: 'reactions'
.state('fusion', {
component: 'fusion'
.state('upgrades', {
component: 'upgrades'
.state('exotic', {
component: 'exotic'
.state('dark', {
component: 'dark'
.state('elements', {
component: 'elements'
.state('achievements', {
component: 'achievements'
.state('dashboard', {
component: 'dashboard'
.state('statistics', {
component: 'statistics'
.state('options', {
component: 'options'
});
}
]).run([
'$state',
function($state) {
$state.go('generators');
]);